Name | Description | |
---|---|---|
Length | Return length of range | |
LowerBound | The start of the range. | |
UpperBound | The upper bound of the range. |
The following tables list the members exposed by Range<T>.
Name | Description | |
---|---|---|
Length | Return length of range | |
LowerBound | The start of the range. | |
UpperBound | The upper bound of the range. |
Name | Description | |
---|---|---|
CompareTo | Overloaded. See CompareTo. | |
Complement | Returns a range which contains the current range, minus value . | |
Contains | Overloaded. Indicates if the range contains value . | |
Equals | See System.Object.Equals(System.Object). | |
GetHashCode | See System.Object.GetHashCode. | |
Intersect | Returns the range that represents the intersection of this range and value . | |
IsContainedBy | Indicates if the range is contained by value . | |
IsContiguousWith | Indicates if this range is contiguous with range . | |
IsJoinableWith | Check value is join with this range | |
Iterate | Iterates the range. | |
Join | Return new range which joined by value with this range | |
Overlaps | Indicates if the range overlaps value . | |
ReverseIterate | Iterates the range in reverse. | |
Split | Splits the range into two. | |
Substract | Returns the result of subtracting a range to the current one. This could lead to a split range in case the one that is being subtracted is contained in the current one. | |
ToString | See System.Object.ToString. | |
Union | Returns the range that represents the union of this range and value . |
And | The intersection operator. |
Or | The union operator. |
Equality | Overrides the equals operator. |
Exclusive Or | The complement operator. |
Greater Than | Overloaded. Overrides the greater than operator. |
Greater Than or Equal | Overloaded. Overrides the greater than or equal operator. |
Inequality | Overrides the not equals operator. Overrides the equals operator. |
Less Than | Overloaded. Overrides the less than operator. |
Less Than or Equal | Overloaded. Overrides the less than or equal to operator. |